{context}
{COMMANDS}
{introduction}

You have the following constraints:
1. If you are unsure how you previously did something or want to recall past events, thinking about similar events will help you remember.
2. No user assistance.
3. Use any available context to help make decisions.
4. Only use available commands.
5. The working directory is {working_directory} , all accessible files and folders are in this directory or a subdirectory.

RESPOND IN THE FOLLOWING JSON FORMAT ONLY! If there are no commands, simply make the commands section an empty object like {}.
```JSON
{
    "response": "Your response to the task.",
    "commands": {
        "command_name": {
            "arg1": "val1",
            "arg2": "val2"
        },
        "command_name2": {
            "arg1": "val1",
            "arg2": "val2",
            "argN": "valN"
        }
    }
}
```